home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / picklist / od_test.dfm / od_test.txt
Encoding:
Text File  |  1996-09-15  |  1.7 KB  |  87 lines

  1. object PoemDialog: TPoemDialog
  2.   Left = 263
  3.   Top = 115
  4.   ActiveControl = LBPoem
  5.   BorderStyle = bsDialog
  6.   Caption = 'Poetry Corner'
  7.   ClientHeight = 230
  8.   ClientWidth = 317
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 8
  18.     Top = 184
  19.     Width = 125
  20.     Height = 13
  21.     Caption = '[Poem by Robert Graves]'
  22.     Font.Color = clBlack
  23.     Font.Height = -11
  24.     Font.Name = 'MS Sans Serif'
  25.     Font.Style = [fsItalic]
  26.     ParentFont = False
  27.   end
  28.   object LineLabel: TLabel
  29.     Left = 8
  30.     Top = 208
  31.     Width = 129
  32.     Height = 13
  33.     AutoSize = False
  34.   end
  35.   object OKBtn: TBitBtn
  36.     Left = 148
  37.     Top = 192
  38.     Width = 77
  39.     Height = 27
  40.     TabOrder = 1
  41.     Kind = bkOK
  42.     Margin = 2
  43.     Spacing = -1
  44.     IsControl = True
  45.   end
  46.   object CancelBtn: TBitBtn
  47.     Left = 232
  48.     Top = 192
  49.     Width = 77
  50.     Height = 27
  51.     TabOrder = 2
  52.     Kind = bkCancel
  53.     Margin = 2
  54.     Spacing = -1
  55.     IsControl = True
  56.   end
  57.   object GroupBox1: TGroupBox
  58.     Left = 4
  59.     Top = 8
  60.     Width = 305
  61.     Height = 165
  62.     Caption = 'OwnerDraw demo'
  63.     TabOrder = 0
  64.     object LBPoem: TPickList
  65.       Left = 16
  66.       Top = 24
  67.       Width = 277
  68.       Height = 130
  69.       IntegralHeight = True
  70.       ItemHeight = 16
  71.       Items.Strings = (
  72.         'Love without hope'
  73.         'As when the young bird catcher'
  74.         'Swept off his tall hat'
  75.         'To the Squire'#39's own daughter,'
  76.         'So let the imprisoned larks'
  77.         'Escape and fly'
  78.         'Singing about her head,'
  79.         'As she rode by.')
  80.       TabOrder = 0
  81.       OnDrawItem = LBPoemDrawItem
  82.       SelectedStyle = psOwnerDraw
  83.       OnChange = LBPoemChange
  84.     end
  85.   end
  86. end
  87.